/*
THEME NAME: Moss Construction
DESCRIPTION: Custom theme developed by DaddyDesign.com for Moss & Associates
VERSION: 1
AUTHOR: Daddy Design
AUTHOR URI: http://www.daddydesign.com/
*/

/* General Settings */
*{ margin: 0; padding: 0; }
img { border: 0; }

html, body { height: 100%; }
body{
font-family: 'Open Sans', sans-serif;
font-size: 17px;
color: #555;
background: #fff;
overflow-x: hidden;
}

p { margin-bottom: 20px; line-height: 27px; }

a{ color: #555; text-decoration: none; outline: none; }
a:hover{ text-decoration: none; }

/* Web Font */
.wf{ font-family: "TradeGothicCondensed#18"; text-transform: uppercase; }
.wf-bold{ font-family: "TradeGothicBoldCondensed#20"; text-transform: uppercase; }

/* HTML5 Elements */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main, section figure, article figure { display: block; padding: 0; margin: 0; }

/* Loader */
.loader{ position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: block; background: transparent; text-indent: -9000px; z-index: 9; }
#loader{ position: fixed; z-index: 9999999; }
.loader:before {
content: '';
height: 20px;
width: 20px;.
position: absolute;
left:50%; 
top:50%; 
margin-top: -10px;
margin-left: -10px;
-webkit-animation: rotation .6s infinite linear;
-moz-animation: rotation .6s infinite linear;
-o-animation: rotation .6s infinite linear;
animation: rotation .6s infinite linear;
border-left: 6px solid rgba(255, 255, 255, .5);
border-right: 6px solid rgba(255, 255, 255, .5);
border-bottom: 6px solid rgba(255, 255, 255, .5);
border-top: 6px solid rgba(255, 255, 255, 1);
border-radius: 100%;
text-indent: -9000px;
-webkit-box-sizing: border-box; 
-moz-box-sizing: border-box; 
box-sizing: border-box;
}
.loader.big:before { height: 40px; width: 40px; margin-top: -20px; margin-left: -20px; }
@-webkit-keyframes rotation { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(359deg); } }
@-moz-keyframes rotation { from { -moz-transform: rotate(0deg); } to { -moz-transform: rotate(359deg); } }
@-o-keyframes rotation { from { -o-transform: rotate(0deg); } to { -o-transform: rotate(359deg); } }
@keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(359deg); } }

/* Box Method */
.box{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }

/* Center */
.center{ text-align: center; }

/* Padding */
.pad_xbig{ padding: 120px; }
.pad_big{ padding: 80px; }
.pad_med{ padding: 60px; }
.pad_small{ padding: 40px; }
.pad_xsmall{ padding: 30px; }
.pad_xxsmall{ padding: 20px; }
.pad_std{ padding: 10px; }
.pad_top{ padding-top: 40px; }
.pad_top_med{ padding-top: 60px; }
.pad_btm_med{ padding-bottom: 60px; }
.pad_top_big{ padding-top: 80px !important; }
.pad_top_xbig{ padding-top: 120px !important; }
.pad_btm_big{ padding-bottom: 80px !important; }
.pad_notop{ padding-top: 0 !important; }
.pad_nobtm{ padding-bottom: 0 !important; }
.grid .wrapper.pad_std{ padding: 0; }
.grid .wrapper.pad_big{ padding: 70px; }
.grid .wrapper.pad_med, .grid .project.preview .pad_med{ padding: 50px; }

/* Margin */
.marg5{ margin: 0 0 5px; }
.marg10{ margin: 0 0 10px; }
.marg15{ margin: 0 0 15px; }
.marg20{ margin: 0 0 20px; }
.marg30{ margin: 0 0 30px; }
.marg40{ margin: 0 0 40px; }
.marg50{ margin: 0 0 50px; }
.marg60{ margin: 0 0 60px; }

/* Round */
.round{ border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; }

/* Shadow */
.shadow{
-webkit-box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1);
box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1);
}

/* Button */
.btn{
width: auto;
height: auto;
float: left;
font-family: "TradeGothicBoldCondensed#20";
font-size: 22px;
line-height: 24px;
color: #fff !important;
text-align: center;
text-decoration: none;
text-transform: uppercase;
padding: 24px 40px 20px 40px;
margin: 0;
border: 1px solid #166936;
background-color: #166936;
border-radius: 6px; 
-moz-border-radius: 6px; 
-webkit-border-radius: 6px;
vertical-align: top;
}
.btn:hover{ color: #166936 !important; background-color: transparent; }
.btn.solid:hover{ color: #a2c3af !important; background-color: #166936; }
.btn.wide{ padding: 24px 60px 20px 60px; }
.btn.small{ height: 40px; font-size: 15px; line-height: 43px; padding: 0 24px; }
.btn.gray{ color: #999 !important; border: 1px solid #ccc; background-color: transparent; }
.btn.gray:hover{ color: #fff !important; border: 1px solid #166936; background-color: #166936; }

.btn.inverse{ background-color:#fff; color: #166936 !important;}
.btn.with_arrow.inverse::after{ color: #166936 !important; }
.btn.inverse:hover{background-color:#166936; color: #fff !important;}
.btn.with_arrow.inverse:hover::after{ color:#fff !important; }
.btn.with_arrow.inverse::after{ transform:rotate(90deg); }

/* With Background Image */
.with_bg{
background-color: #000;
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: cover; 
-moz-background-size: cover; 
-o-background-size: cover; 
background-size: cover;
}
.with_bg.pos_top{ background-position: top; }
.with_bg.pos_btm{ background-position: bottom; }
.with_bg.with_overlay::before{
content: '';
display: block; 
width: 100%; 
height: 100%; 
position: absolute;
top: 0;
left: 0;
background: #000; 
-webkit-opacity: 0.2;
-moz-opacity: 0.2;
opacity: 0.2;
z-index: 1;
}
.with_bg.parallax{
background-color: #000;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: cover; 
-moz-background-size: cover; 
-o-background-size: cover; 
background-size: cover;
}
.with_bg.parallax50{
background-color: #000;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center left -400px;
-webkit-background-size: cover; 
-moz-background-size: cover; 
-o-background-size: cover; 
background-size: cover;
}

/* Image Resizing */
.img img{ display: block; width: auto; max-width: 100%; height: auto; margin: 0 auto; position: relative; }
.img a{ display: block; }

/* Container */
#container{ width: 100%; height: 100%; float: left; display: block; margin: 0 auto; position: relative; }

/* Header */
#header{ width: 100%; height: 100px; background: #fff; position: fixed; top: 0; left: 0; right: 0; z-index: 999; }
#header #logo{ width: 152px; height: 50px; float: left; display: block; padding: 35px 40px 15px 40px; text-indent: -9000px; }
#header #logo a{ display: block; width: 152px; height: 50px; background: url(images/logo.svg) no-repeat center; }
	
#nav_btn{ display: none; }
#header .toggle{ display: block; }
#header #nav{ width: auto; float: right; margin-left: 232px;  }
#header #nav ul.menu{ width: auto; float: left; display: block; padding-top: 36px; list-style: none; }
#header #nav ul.menu li{ width: auto; float: left; }
#header #nav ul.menu li a{ height: 64px; display: block; font-size: 21px; font-weight: 400; color: #666; line-height: 70px; text-transform: uppercase; padding: 0 15px; position: relative; }

#header #nav ul.menu li.current-menu-ancestor > a,
#header #nav ul.menu li.current-menu-item  > a,
#header #nav ul.menu li a:hover{ color: #166936; }

#header #nav .cta_btn{ float: right; margin: 48px 12px 12px 12px; } 

#header #nav .wrap{ 
height: 36px;
position: absolute;
top: 0;
right: 0;
left: 232px;
background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(240,240,240,1) 100%);
z-index: 99;
}
#header #nav .wrap::after{ 
content: ''; 
width: 100%;
height: 1px;
display: block;
position: absolute;
top: 36px;
right: 0;
left: 232px;
background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(153,153,153,1) 100%);
}
#header #nav .wrap .inner{ float: right; }
#header #nav .wrap ul.sub_menu{ width: auto; height: 36px; float: left; display: block; list-style: none; padding: 8px 0; overflow: hidden; }
#header #nav .wrap ul.sub_menu li{ width: auto; height: 20px; float: left; border-right: 1px solid #d7d7d7; }
#header #nav .wrap ul.sub_menu li a{ display: block; font-size: 14px; font-weight: 600; color: #555; line-height: 20px; text-transform: uppercase; padding: 0 12px; position: relative; }

#header #nav .wrap ul.sub_menu li.current-menu-item a,
#header #nav .wrap ul.sub_menu li a:hover{ color: #166936; }

#header #nav .wrap ul.sub_menu ul{ display:none; }

#header .search_btn{ float: left; margin-right: 5px; }
#header .search_btn a{
width: 36px; 
height: 36px;
display: block;
background: url(images/search.svg) no-repeat center; 
-webkit-background-size: 14px; 
-moz-background-size: 14px;  
-o-background-size: 14px; 
background-size: 14px; 
text-indent: -9000px; 
cursor: pointer;
}

#header #nav > ul.menu > li > .sub-wrapper .sub-wrapper{ display:none; }
#header #nav > ul.menu > li > .sub-wrapper{
	display:none;
	position: absolute;
	width: 100%;
	left: 0;
	background: #fff;
	box-shadow: inset 0px 0px 20px 0 rgb(0 0 0 / 10%);
	top: 100px;
	height: calc(100vh - 100px);
	padding: 40px;
}

#header #nav .sub-wrapper .menu-item-featured-boxes{width: 70%;display: flex;position: relative;}

#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box{
	background-size: cover;
	background-repeat: no-repeat;
	line-height:1.5;
	color:#fff;
	display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-direction: column;
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box:before{
	content:"";
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4009978991596639) 100%);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index:1;
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.has-client .btn{
	color:#fff;
	background:transparent;
	border-color:#fff;
	margin-left: 40px;
	position: relative;
	top: -4px;
}

#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.has-client.small-box .btn{
	margin-left: 20px;
}
#header #nav ul.menu li .sub-wrapper a.closer{
    display: block;
    width: 36px;
    height: 36px;
    background: #e4e4e4;
    position: absolute;
    right: 40px;
    top: 50px;
}
#header #nav ul.menu li .sub-wrapper a.closer:before,
#header #nav ul.menu li .sub-wrapper a.closer:after{
	background: #555;
	width:16px;
	height:1px;
	display:block;
	content:"";
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-8px;
}
#header #nav ul.menu li .sub-wrapper a.closer:before{ transform:rotate(-45deg); }
#header #nav ul.menu li .sub-wrapper a.closer:after{ transform:rotate(45deg); }
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box .wrap-box{
	position:relative;
	z-index:3;
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box .wrap-box .client-info strong{
	    font-family: "TradeGothicBoldCondensed#20";
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box .wrap-box .client-info{
    display: flex;
    align-items: center;
    text-transform:none;
    font-weight:400;
    font-family: "TradeGothicCondensed#18";
    line-height: 24px;
    font-size: 14px;
}

#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.large-box{
    width: calc(70% - 40px);
    height: 100%;
    background-color: #ddd;
    padding: 50px;
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box .intro{ font-size: 26px; margin-bottom: 10px; }
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.large-box h2{
	font-size: 70px;
    line-height: 74px;
    width: 510px;
    max-width: 100%;
	margin-bottom:20px;
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.has-client h2{
	position:relative;
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.has-client h2:after{
	background:#d1d0d0;
	width:122px;
	bottom: -4px;
	left: -50px;
	position:absolute;
	content:"";
	display:block;
	height: 1px;
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.has-client.small-box h2{
	margin-bottom:15px;
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.has-client.small-box h2:after{
	left: -40px;
}

#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.small-box h2{
	font-size: 46px;
	line-height: 50px;
	width: 290px;
	max-width: 100%;
	margin-bottom:5px;
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.small-box{
    background-color: #ddd;
    position: absolute;
    width: 30%;
    height: 50%;
    height: calc(50% - 10px);
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px;
    flex-wrap: wrap;
    flex-direction: column;
}
#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.small-box.first{
    top: 0;
    right: 20px;
}

#header #nav .sub-wrapper .menu-item-featured-boxes .menu-item-featured-box.small-box.second{
    bottom: 0;
    right: 20px;
}
#header #nav .sub-wrapper .menu-item-list-box{width: 30%;padding: 10px 0;}

#header #nav > ul.menu > li > .sub-wrapper > .menu-item-list-box > ul{
	display:flex;
	height: 720px;
	flex-direction: column;
	padding: 45px 50px;
	background: #f0f0f0;
	list-style:none;
}
#header #nav > ul.menu > li > .sub-wrapper > .menu-item-list-box ul{
	list-style:none;
}
#header #nav > ul.menu > li > .sub-wrapper > .menu-item-list-box ul ul{/* display:none; */}
#header #nav > ul.menu > li > .sub-wrapper > .menu-item-list-box ul li.active ul{display:block;margin-left: 20px;margin-bottom: 10px;}
#header #nav > ul.menu > li > .sub-wrapper > .menu-item-list-box ul li.active ul li{ border:0; }
#header #nav > ul.menu > li > .sub-wrapper > .menu-item-list-box ul li.active ul li a{padding:5px 0;font-size: 16px;}

#header #nav .sub-wrapper .menu-item-list-box ul li{float:none;border-bottom: 1px solid #d5d5d5;}
#header #nav .sub-wrapper .menu-item-list-box ul li:last-child{ border-bottom:0; }

#header #nav .sub-wrapper .menu-item-list-box ul li a{
	height: auto;
	padding: 0;
	line-height: 20px;
	font-size: 18px;
	padding: 18px 0px 12px;
}
#header #nav .sub-wrapper .menu-item-list-box ul ul li.menu-item-has-children a:after,
#header #nav ul.menu .dropdown_btn{
    width: 12px;
    height: 7px;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #071d7e;
    line-height: 14px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -3px;
    background-image: url(images/arrow_down_gray.svg);
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    overflow: hidden;
}

#header #nav ul.menu li.menu-item-has-children.active > a .dropdown_btn{
	transform:rotate(-180deg);
}
#header #nav ul.menu li.active > a {
    color: #166936;
}
#header #nav > ul.menu > li.simple-menu .sub-wrapper .menu-item-list-box ul li a.has-thumbnail-link img,
#header #nav > ul.menu > li.simple-menu .sub-wrapper a.closer{ display:none; }
#header #nav > ul.menu > li.simple-menu .sub-wrapper .menu-item-list-box ul li a.has-thumbnail-link:hover{
	color:#ffffff;
	background:#166936;
}
@media only screen and (min-width: 1081px){
	#header #nav ul.menu li.simple-menu{ position:relative; }
	#header #nav > ul.menu > li.simple-menu .sub-wrapper .sub-wrapper{ display:none; }
	#header #nav > ul.menu > li.simple-menu .sub-wrapper{
		width: 390px;
		padding: 20px;
		left:50%;
		transform: translateX(-50%);
		background: #fff;
		border-radius: 6px;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		-webkit-box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1);
		-moz-box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1);
		box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1);
		height: auto;
		top: 84px;
	}
	#header #nav > ul.menu > li.simple-menu .sub-wrapper .menu-item-list-box{
		width:100%;
		padding: 0;
	}
	#header #nav > ul.menu > li.simple-menu > .sub-wrapper > .menu-item-list-box > ul{
		padding: 0;
		height: auto;
		background: transparent;
	}
	#header #nav > ul.menu > li.simple-menu .sub-wrapper li{
		border-bottom:0;
		margin-bottom: 10px;
	}
	#header #nav > ul.menu > li.simple-menu .sub-wrapper li.menu-item-has-children{ position:relative; }
	#header #nav > ul.menu > li.simple-menu.simple-menu2 .sub-wrapper li,
	#header #nav > ul.menu > li.simple-menu .sub-wrapper li:last-child{ margin-bottom:0; }
	#header #nav > ul.menu > li.simple-menu .sub-wrapper .menu-item-list-box ul li a{
		border: 1px solid #d5d5d5;
		padding: 20px 20px 15px;
		border-radius:6px;
	}
	#header #nav > ul.menu > li.simple-menu.simple-menu2 .sub-wrapper .menu-item-list-box ul li a{border:0;border-radius:0;border-bottom: 1px solid #ddd;padding-left: 0;padding-right: 0;}
	#header #nav > ul.menu > li.simple-menu.simple-menu2 .sub-wrapper .menu-item-list-box ul li:last-child a{border-bottom:0;}
	#header #nav > ul.menu > li.simple-menu .sub-wrapper .menu-item-list-box ul li a.has-thumbnail-link .text{
		position:relative;
		top:2px;
	}
	#header #nav > ul.menu > li.simple-menu .sub-wrapper .menu-item-list-box ul li a.has-thumbnail-link{
		padding:0;
		display:flex;
		align-items: center;
		line-height: 18px;
		font-size: 20px;
		height: 68px;
	}
	#header #nav > ul.menu > li.simple-menu .sub-wrapper .menu-item-list-box ul li a.has-thumbnail-link img {
	    margin: 0;
	    padding: 0;
	    max-width: 120px;
	    border-radius: 5px 0 0 5px;
	    object-fit: cover;
	    height: 68px;
	    display: flex;
	    width: 120px;
	    margin-right: 20px;
	}
	#header #nav > ul.menu > li:hover > a{
		position:relative;
	}
	

	#header #nav ul.menu > li.menu-item-has-children:hover > a > .dropdown_btn{
		transform:rotate(-180deg);
	}
	#header #nav > ul.menu > li:hover > a:after{
		content:"";
		display:block;
		position:absolute;
		width: 200%;
		height:20px;
		bottom:-20px;
		transform: translateX(-50%);
		left: 50%;
	}
	#header #nav > ul.menu > li:hover > .sub-wrapper/*,
	#header #nav > ul.menu > li.active > .sub-wrapper*/{ display:flex; } 
	#header #nav ul.menu > li.menu-item-has-children.simple-menu:hover > a:before/*,
	#header #nav ul.menu > li.menu-item-has-children.active.simple-menu > a:before */{
		display: block;
		width: 15px;
		height: 15px;
		content: "";
		background: #fff;
		position: absolute;
		top: 100%;
		z-index: 10;
		margin-top: 12px;
		transform: rotate(45deg);
		left: 50%;
		margin-left: -7px;
	}
	#header #nav > ul.menu > li.simple-menu.simple-menu2 > .sub-wrapper > .menu-item-list-box ul{
		background:#f0f0f0;
		padding: 10px 20px 10px;
		border-radius:6px;
		width:100%;
	}
	#header #nav > ul.menu > li.simple-menu.simple-menu2 .sub-wrapper .menu-item-list-box ul li.menu-item-has-children:last-child:hover > a {border-bottom:1px solid #ddd; }

	
	#header #nav > ul.menu > li.simple-menu .sub-wrapper li:hover > .sub-wrapper{
		display:flex;
		position: absolute;
		background: #fff;
		top: 50%;
		right: 100%;
		left: auto;
		transform: translate(-50px, -50%);
	}
	#header #nav > ul.menu > li.simple-menu .sub-wrapper li.menu-item-has-children:hover > a:before{
		width: 70px;
		height: 100px;
		content:"";
		display: block;
		position: absolute;
		right: calc(100% + 0px);
		top: 50%;
		margin-top: -50px;
	}
	#header #nav > ul.menu > li.simple-menu .sub-wrapper li.menu-item-has-children:hover > a:after{
		display: block;
		width: 15px;
		height: 15px;
		content: "";
		background: #fff;
		position: absolute;
		top: 8px;
		z-index: 10;
		margin-top: 15px;
		transform: rotate(45deg);
		right: calc(100% + 45px);
		margin-left: -23px;
	}
	
	#header #nav > ul.menu > li.simple-menu .sub-wrapper li.menu-item-has-children:hover > a > .dropdown_btn{
		transform:rotate(180deg);
	}
}

#header #nav > ul.menu > li.simple-menu .sub-wrapper.a1{
		width: 100%;
		position: relative !important;
		padding: 0 !important;
		margin: 0 !important;
		left: inherit !important;
		right: inherit !important;
		transform: none !important;
		background: none !important;
		border-radius: 0 !important;
		-moz-border-radius: 0 !important;
		-webkit-border-radius: 0 !important;
		-webkit-box-shadow: none !important;
		-moz-box-shadow: none !important;
		box-shadow: none !important;
		height: auto !important;
		top: inherit !important;
}
#header #nav > ul.menu > li.simple-menu .sub-wrapper.a1 ul.parent-lvl-2{ padding: 0; }
#header #nav > ul.menu > li.simple-menu .sub-wrapper.a1 ul.parent-lvl-2 li a{ 
height: 38px;
font-size: 13px;
line-height: 38px;
padding: 0 20px;
font-weight: 400;
font-family: 'Open Sans', sans-serif;
}
#header #nav > ul.menu > li.simple-menu .sub-wrapper.a1 ul.parent-lvl-2 li:first-child{/* border-top: 1px solid #d5d5d5; */}
#header #nav > ul.menu > li.simple-menu .sub-wrapper.a1 ul.parent-lvl-2 li{border-bottom: 1px solid #d5d5d5;}
#header #nav > ul.menu > li.simple-menu .sub-wrapper.a1 ul.parent-lvl-2 li > a{border-bottom:0;border-top: 0;}
#header #nav > ul.menu > li.simple-menu .sub-wrapper li.menu-item-has-children:hover > a:after{ display: none; }


/* Main */
#main{ width: 100%; float: left; padding: 100px 0 0; position: relative; }
#container.no_header #main{ padding: 0; }

/* Section */
.section{ width: 100%; float: left; position: relative; }
.section.hgt100{ height: calc(100vh - 100px); }
#container.no_header .section.hgt100{ height: 100vh; }
.section.hgt800{ height:800px; }
.section.white{ background-color: #fff; }
.section.gray{ background-color: #f6f6f6; }
.section.green{ background-color: #166936; }
.section.gold{ background-color: #866d4b; }
.section.centered{ text-align: center; }
.section .wrapper{ width: 100%; max-width: 1080px; display: block; clear: both; margin: 0 auto; position: relative; overflow: hidden; }
.section .wrapper.pad_xbig{ max-width: 1160px; }
.section.career .wrapper.pad_xbig{ max-width: 1440px; }
.section .wrapper.wide{ max-width: 100%; }

.section .main{ width: 100%; float: left; position: relative; }
.section .header{ width: 100%; float: left; position: relative; }
.section .header.with_bg.tall{ height: 620px; }
.section .header.with_bg.medium{ height: 340px; }
.section .header.with_bg.medium .wrap h1{ bottom:100px; }
.section .header.with_bg .wrap{
width: 100%;
max-width: 1600px;
height: 100%;
display: block;
position: relative;
margin: 0 auto;
overflow: hidden;
}
.section .header.with_bg .wrap h1{
width: 100%;
max-width: 600px;
display: block;
position: absolute;
right: 80px;
bottom: 80px;
color: #fff;
text-align: right;
text-transform: uppercase;
z-index: 9;
}
.section .header.with_bg .wrap h1 span{ display: block; font-size: 24px; font-weight: 400; line-height: 28px; margin: 0 0 5px; }

.section .header h1{ font-size: 120px; font-weight: inherit; line-height: 110px; text-transform: uppercase; }
.section .header h1.big{ font-size: 80px; line-height: 76px; }
.section .header h1.big2{ font-size: 70px; line-height: 68px; }
.section .header h1.med{ font-size: 46px; line-height: 48px; }
.section .header h1.small{ font-size: 26px; line-height: 30px; }
.section .header h2{ font-size: 80px; font-weight: inherit; line-height: 76px; text-transform: uppercase; }
.section .header h2.big{ font-size: 120px; font-weight: inherit; line-height: 110px; text-transform: uppercase; }
.section .header h2.med{ font-size: 46px; line-height: 48px; }
.section .header h2.small{ font-size: 26px; line-height: 30px; }
.section .header h3{ font-size: 26px; font-weight: inherit; line-height: 30px; text-transform: uppercase; }
.section .header h3.big{ font-size: 36px; line-height: 38px; }
.section .header h3.big2{ font-size: 80px; line-height: 76px; }
.section .header h4{ font-size: 20px; font-weight: inherit; line-height: 24px; text-transform: uppercase; }
.section .header .green{ color: #166936; }
.section .content{ width: 100%; float: left; position: relative; }
.section .content.small, .section .content.small p{ font-size: 15px; line-height: 23px; }
.section .content.med, .section .content.med p{ font-size: 20px; line-height: 32px; }
.section .content.big, .section .content.big p{ font-size: 24px; line-height: 35px; }
.section .footer{ width: 100%; float: left; padding-top: 15px; position: relative; }
.section .footer.center .btn{ float: none; display: inline-block; }

.section .image{ width: 100%; float: left; position: relative; }

.section .header span.small{ display: block; font-size: 26px; font-weight: inherit; line-height: 30px; text-transform: uppercase; }
.section .header span.med{ display: block; font-size: 46px; line-height: 48px; }
.section .header span.big{ display: block; font-size: 120px; font-weight: inherit; line-height: 110px; text-transform: uppercase; }

/* Page */
.section.entry.std .header{ margin-bottom: 40px; }
.section.entry.centered .header{ padding-bottom: 25px; margin-bottom: 30px; }
.section.entry.centered .header::after{ content: ''; width: 220px; height: 1px; display: block; position: absolute; bottom: 0; left: 50%; margin-left: -110px; background: #ddd; }

.section.hgt100 .wrap{
width: 100%;
max-width: 1140px;
display: block;
text-align: center;
position:absolute;
top: 50%; 
left: 50%; 
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%); 
transform: translate(-50%,-50%);
z-index: 9;
}
.section.hgt100 .wrap .header{ color: #fff; }
.continue-solo,
.section.entry .section.hgt100.hero .nav{ display: block; text-align: center; position: absolute; bottom: 0; left: 0; right: 0; z-index: 99; }
.continue-solo .nav_btn,
.section.entry .section.hgt100.hero .nav .nav_btn{ 
display: inline-block; 
font-size: 20px; 
color: #fff; 
text-transform: uppercase; 
padding: 20px 20px 32px; 
cursor: pointer; 
background-image: url(images/btn_arrow_down.svg);
background-repeat: no-repeat; 
background-position: bottom;
-webkit-background-size: 50px; 
-moz-background-size: 50px;  
-o-background-size: 50px; 
background-size: 50px; 
}

.section.entry.with_img .image{ width: 50%; height: calc(100vh - 100px); float: left; position: sticky; top: 100px; left: 0; margin: 0 !important; }
#container.no_header .section.entry.with_img .image{ height: 100vh; top: 0; }
.section.entry.with_img .image.custom-gallery .custom-gallery-slide{
	display:flex;
	width:100%;
	height:100%;
	background-size:cover;
	background-position:center;
	background-repeat: no-repeat;
}
/*
.section.entry.with_img .image.custom-gallery .custom-gallery-slide img{
	position:absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	object-fit: cover;
}
*/
.section.entry.with_img .image img{ display: none; }
.section.entry.with_img .image .swiper-container-market img{ width:100%; }
.section.entry.with_img .image.with_video_link a, .section.hgt100.with_video_link a{ display: block; position: absolute; top: 0; right: 0; left: 0; bottom: 0; z-index: 9; }
.section.entry.with_img .image.with_video_link a::before, .section.hgt100.with_video_link a::before{
content: '';
width: 100px;
height: 100px;
display: block;
position: absolute;
left:50%; 
top:50%; 
margin-top: -50px;
margin-left: -50px; 
background: url(images/play.svg) no-repeat center; 
-webkit-background-size: 100px; 
-moz-background-size: 100px; 
-o-background-size: 100px;  
background-size: 100px; 
z-index: 9;
}
.section.entry.with_img .image.with_video_link.with_video_cta a::before, .section.hgt100.with_video_link.with_video_cta a::before{ display: none; }
.section.entry.with_img .image.with_video_link a span.video_cta, .section.hgt100.with_video_link a span.video_cta{
content: '';
width: 260px;
display: block;
font-size: 32px;
line-height: 36px;
color: #fff;
text-align: center;
position: absolute;
top: 50%; 
left: 50%; 
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%); 
transform: translate(-50%,-50%);
padding-top: 115px;
background: url(images/play.svg) no-repeat top center; 
-webkit-background-size: 100px; 
-moz-background-size: 100px; 
-o-background-size: 100px;  
background-size: 100px; 
z-index: 9;
}
.section.entry.with_img .main{ width: 50%; min-height: calc(100vh - 100px); float: right; display: table; position: relative; overflow: visible; }
.section.entry.with_img .main .wrap{ display: table-cell; vertical-align: middle; }
.section.entry.with_img .main .wrap .header{ padding-bottom: 25px; margin-bottom: 30px; }
.career-main-content .header::after,
.section.entry.with_img .main .wrap .header::after{ content: ''; width: 220px; height: 1px; display: block; position: absolute; bottom: 0; left: -120px; background: #ddd; }
.section.entry.with_img .main .wrap.pad_big .header::after{ content: ''; width: 180px; height: 1px; display: block; position: absolute; bottom: 0; left: -80px; background: #ddd; }

.section.hgt100 .footer{ padding-top: 10px; }
.section .footer ul.btns{ width: 100%; float: left; list-style: none; }
.section.hgt100 .footer ul.btns{ font-size: 0; }
.section .footer ul.btns.column{
-webkit-columns: 2;
-moz-columns: 2;
columns: 2;
-webkit-column-gap: 10px;
-moz-column-gap: 10px;
column-gap: 10px;
}
.section .footer ul.btns li{ width: 100%; float: left; padding: 5px 0; }
.section .footer ul.btns.inline li{ width: auto; float: none; display: inline-block; margin: 0; padding: 0; }
.section.hgt100 .footer ul.btns li{ width: auto; float: none; display: inline-block; margin: 0 5px; }
.section .footer ul.btns li a.btn.with_arrow{ width: 100%; position: relative; text-align: left; padding-left: 30px; padding-right: 60px; }
.section .footer ul.btns li a.btn.with_arrow::after{ content: '\203A'; font-family: "TradeGothicCondensed#18"; font-size: 46px; color: #a2c3af; position: absolute; right: 25px; top: 50%; margin-top: -11px; }
.section .footer ul.btns li a:hover.btn::after{ color: #166936; }

.section.sxs .hero{ width: 50%; }
.section.sxs .hero:first-child{ border-right: 3px solid #d3d3d3; }
.section.sxs .hero:last-child{ border-left: 3px solid #d3d3d3; }
.section.sxs .hero a{ display: block; position: absolute; top: 0; right: 0; left: 0; bottom: 0; z-index: 99; }
.section.sxs .hero .header .btn{ min-width: 220px; float: none; display: inline-block; margin-top: 10px; }
.section.sxs .hero a:hover .header .btn{ color: #166936 !important; background-color: #fff; border-color: #fff; }

.section.stats{ overflow: hidden; }
.section.stats ul{ width: 100%; float: left; list-style: none; }
.section.stats ul li{ width: 33.3333%; float: left; padding: 30px 50px; }
.section.stats ul li h3{ display: block; color: #166936; font-weight: normal; }
.section.stats.gold ul li h3, .section.stats.green ul li h3{ color: #fff; }
.section.stats ul li h3 .stat{ display: table; font-size: 80px; line-height: 76px; text-transform: uppercase; padding-bottom: 30px; margin-bottom: 35px; position: relative; }
.section.stats ul li h3 .stat > span{ display: table-cell; vertical-align: bottom; }
.section.stats ul li h3 .stat::after{ content: ''; width: 140px; height: 3px; display: block; position: absolute; bottom: 0; left: -30px; background-color: #ddd; }
.section.stats.gold ul li h3 .stat::after{ content: ''; width: 140px; height: 3px; display: block; position: absolute; bottom: 0; left: -30px; background-color: #b1a18c; }
.section.stats.green ul li h3 .stat::after{ content: ''; width: 140px; height: 3px; display: block; position: absolute; bottom: 0; left: -30px; background-color: #618664; }
.section.stats ul li:first-child h3 .stat::before{ content: ''; height: 1px; display: block; position: absolute; bottom: 1px; left: -5000%; right: -5000%; background-color: #ddd; }
.section.stats.gold ul li:first-child h3 .stat::before{ background-color: #b1a18c; }
.section.stats.green ul li:first-child h3 .stat::before{ background-color: #618664; }
.section.stats ul li h3 span.stat_title{ display: block; font-size: 26px; line-height: 30px; text-transform: uppercase; padding-right: 30%; }

.section.sticky{ position: sticky; top: 100px; left: 0; }

/* Content Slideshow */
.swiper-container-content .swiper-slide.with_bg{ text-indent: inherit; }
.swiper-container-content .swiper-slide.with_bg:before{ display: block; }
.swiper-container-content .swiper-slide .header h3{ max-width: 640px; margin: 0 auto; }

.swiper-container-content .nav_btns{ width: 100%; position: absolute; bottom: 30px; text-align: center; z-index: 99; }
.swiper-container-content .nav_btns .nav_btn{ 
width: 50px; 
height: 50px; 
display: inline-block; 
background-repeat: no-repeat; 
background-position: center;
background-color: transparent;
-webkit-background-size: 50px; 
-moz-background-size: 50px;  
-o-background-size: 50px; 
background-size: 50px; 
border: 1px solid #fff;
text-indent: -9000px;
margin: 0 3px;
cursor: pointer; 
}
.swiper-container-content .nav_btns .nav_btn.prev{ background-image: url(images/btn_arrow_left.svg); }
.swiper-container-content .nav_btns .nav_btn.prev:hover{ background-color: #fff; background-image: url(images/btn_arrow_left_gray.svg); }
.swiper-container-content .nav_btns .nav_btn.next{ background-image: url(images/btn_arrow_right.svg); }
.swiper-container-content .nav_btns .nav_btn.next:hover{ background-color: #fff; background-image: url(images/btn_arrow_right_gray.svg); }

/* Testimonial */
.section.testimonial .main .wrap{ 
color: #fff;
background-image: url(images/quotes.svg);
background-repeat: no-repeat; 
background-position: top 20px right 20px;
-webkit-background-size: 40px auto; 
-moz-background-size: 40px auto;  
-o-background-size: 40px auto; 
background-size: 40px auto; 
}
.section.testimonial .main .wrap .testimonial{ display: block; font-size: 28px; font-weight: 300; line-height: 38px; padding: 0 0 5px; }
.section.testimonial .main .wrap .testimonial p{ line-height: 38px; }
.section.testimonial .main .wrap span.name{ display: block; font-size: 26px; line-height: 32px; text-transform: uppercase; padding-top: 25px; position: relative; }
.section.testimonial .main .wrap span.name::before{ content: ''; width: 180px; height: 1px; display: block; position: absolute; top: 0; left: -120px; background: #9e8a6f; }

/* Stat Slideshow */
.swiper-container-stats .slide{ height: calc(100vh - 100px); }
.swiper-container-stats .slide .wrapper{ border: 25px solid #fff; }

.swiper-container-stats .slide .flex_column{ width: 25%; height: calc(100vh - 150px); float: left; position: sticky; display: flex; flex-direction: column; top: 0; left: 0; }
.swiper-container-stats .slide .stat{ width: 100%; float: left; } 
.swiper-container-stats .slide .stat .wrap{ display: block; background: #866d4b; border: 5px solid #fff; }
.swiper-container-stats .slide .stat .wrap span.stat{ display: block; font-size: 100px; line-height: 98px; color: #fff; text-transform: uppercase; padding: 5px 0; }
.swiper-container-stats .slide .stat .wrap span.title{ display: block; font-size: 26px; color: #fff; text-transform: uppercase; padding-top: 25px; position: relative; clear: both; }
.swiper-container-stats .slide .stat .wrap span.title::before{ content: ''; width: 100px; height: 1px; display: block; position: absolute; top: 0; left: -60px; background: #b1a18c; }
.swiper-container-stats .slide .img1{ width: 100% !important; float: left; flex-grow: 1; border: 5px solid #fff; }
.swiper-container-stats .slide .img1 img{ display: none; }

.swiper-container-stats .section.entry.with_img .image{ height: calc(100vh - 150px); top: 0; }
.swiper-container-stats .slide .img2{ width: 35% !important; border: 5px solid #fff; }

.swiper-container-stats .slide .main{ width: 40% !important; padding: 5px; }
.swiper-container-stats .section.entry.with_img .main .wrap.pad_big .header::after { left: -90px; }

.swiper-container-stats .nav_btns{ position: absolute; bottom: 30px; right: 30px; z-index: 99; }
.slick-prev-custom-box-m,
.slick-next-custom-box-m,
.slick-prev-custom-box,
.slick-next-custom-box,
.swiper-container-stats .nav_btns .nav_btn{ 
width: 50px; 
height: 50px; 
float: left; 
background-repeat: no-repeat; 
background-position: center;
background-color: #fff;
-webkit-background-size: 50px; 
-moz-background-size: 50px;  
-o-background-size: 50px; 
background-size: 50px; 
border: 1px solid #ddd;
text-indent: -9000px;
margin-right: 10px;
cursor: pointer; 
}
.slick-prev-custom-box,
.slick-prev-custom-box-m,
.swiper-container-stats .nav_btns .nav_btn.prev{ border: 1px solid #166936; background-image: url(images/btn_arrow_left_gray.svg); }
.swiper-container-stats .nav_btns .nav_btn.prev:hover{ background-image: url(images/btn_arrow_left.svg); }
.slick-next-custom-box,
.slick-next-custom-box-m,
.swiper-container-stats .nav_btns .nav_btn.next{ border: 1px solid #166936; background-image: url(images/btn_arrow_right_gray.svg); }
.swiper-container-stats .nav_btns .nav_btn.next:hover{ background-image: url(images/btn_arrow_right.svg); }
.slick-btns-nav a:hover,
.slick-btns-nav-m a:hover,
.swiper-container-stats .nav_btns .nav_btn:hover{ background-color: #166936; border: 1px solid #166936; }

.slick-btns-nav,
.slick-btns-nav-m{ float: right;  }
.slider-clearer,
.market-leadership-slider{ clear:both; }
.market-leadership-slider .slick-track{ margin:0;  }
.slick-prev-custom-box-m,
.slick-next-custom-box-m,
.slick-prev-custom-box,
.slick-next-custom-box{
	width:40px;
	height:40px;
-webkit-background-size: 40px; 
-moz-background-size: 40px;  
-o-background-size: 40px; 
background-size: 40px; 
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}


/* Accordion Section */
.section.accordion .acc_section{ padding: 15px 0; }
.section.accordion .acc_section .header.top_lvl{ padding: 0 0 10px; margin: 0 0 20px; border-bottom: 1px solid #ddd; }

.section.accordion .acc{ background: #fff; margin: 0 0 15px; }
.section.accordion .acc .header.acc_btn{ padding: 30px 60px 25px 30px; cursor: pointer; position: relative; }
.section.accordion .acc .header.acc_btn::after{ 
content: '+'; 
width: 26px; 
height: 24px; 
display: block;
font-size: 24px;
line-height: 24px; 
text-align: center;
position: absolute; 
top: 50%; 
right: 20px; 
margin-top: -12px; 
vertical-align: middle; 
}
.section.accordion .acc .header.active.acc_btn::after{ content: '-'; color: #166936; }
.section.accordion .acc .header.acc_btn h4{ font-size: 22px; line-height: 24px; padding-right: 36px; }
.section.accordion .acc .header.acc_btn.active, .acc .header.acc_btn:hover{ color: #166936; }
.section.accordion .acc .content{ width: 100%; float: left; display: none; border-top: 1px solid #ddd; position: relative; }
.section.accordion .acc .content .inner{ with: 100%; float: left; position: relative; }

/* Careers */
.section.careers.entry .main{ width: 70%; float: left; }

.section.careers.entry .carousel{ width: 30%; height: calc(100vh - 100px); float: left; position: fixed; top: 100px; right: 0; margin: 0 !important; }
.section.img_carousel{ 
width: 50%;
height: 100vh;
float: left;
transform: translate3d(0, 0, 0);
position: relative;
}
.section.img_carousel.right{ float: right; }
.section.img_carousel .images { position: absolute; height: 2400px; }
.section.img_carousel .move1{
animation: carousel 70s linear infinite;
transform: translate3d(0, 0, 0);
top: 0;
left: 0;
right: 10px;
}
.section.img_carousel .move1b{
animation: carousel 70s linear infinite;
transform: translate3d(0, 0, 0);
top: 2400px;
left: 0;
right: 10px;
}
.section.img_carousel .move2{
animation: carousel2 70s linear infinite;
transform: translate3d(0, 0, 0);
bottom: 0;
left: 10px;
right: 0;
}
.section.img_carousel .move2b{
animation: carousel2 70s linear infinite;
transform: translate3d(0, 0, 0);
bottom: 2400px;
left: 10px;
right: 0;
}
.section.img_carousel .images .img { width: 100%; height: 380px; float: left; margin: 10px 0; }
.section.img_carousel .images .img img{ display: none; }
@keyframes carousel { 100% { -webkit-transform: translateY(-100%); } }
@keyframes carousel2 { 100% { -webkit-transform: translateY(100%); } }

.careers_cta_btn{ width: 100%; float: left; margin: 0 0 20px; }
.careers_cta_btn .btn{ width: 100%; float: left; text-align: left; padding: 30px; }
.careers_cta_btn a:hover.btn{ text-decoration: none; background: #fff; }
.careers_cta_btn .btn span.title{ display: block; font-size: 30px; line-height: 32px; margin: 0 0 3px; }
.careers_cta_btn .btn span.sub_title{ display: block; font-size: 18px; line-height: 20px; }

/* Careers - Widget Edit */
#resumator-wrapper{ width: 100%; float: left; }
#resumator-jobs .resumator-job{
padding: 30px;
margin: 0 0 20px;
background: #fff;
border-radius: 6px; 
-moz-border-radius: 6px; 
-webkit-border-radius: 6px; 
-webkit-box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1);
box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1);
position: relative;
}
#resumator-jobs .resumator-job .resumator-job-title {
font-family: 'Open Sans', sans-serif;
color: #555;
padding: 0; 
margin: 0; 
border-top: 0; 
}
#resumator-jobs .resumator-job .resumator-job-info {
font-family: 'Open Sans', sans-serif;
color: #555;
margin-top: 6px;
}
#resumator-jobs .resumator-job-title, #resumator-jobs .resumator-jobs-text { color: #555; }
#resumator-jobs .resumator-job a{ display: block; position: absolute; top: 0; right: 0; left: 0; bottom: 0; text-indent: -9000px; }

#resumator-jobs .resumator-job:hover{ background: #166936; }
#resumator-jobs .resumator-job:hover .resumator-job-title,
#resumator-jobs .resumator-job:hover .resumator-job-info,
#resumator-jobs .resumator-job:hover .resumator-job-title,
#resumator-jobs .resumator-job:hover .resumator-jobs-text { color: #fff; }

/* Grid */
.section.grid .header.main_title{ padding: 0 10px 10px; }
.section.grid .header.main_title .wrap{ width: 100%; float: left; display: table; padding-bottom: 12px; border-bottom: 1px solid #ddd; }
.section.grid .header.main_title h3{ display: table-cell; vertical-align: bottom; }
.section.grid .header.main_title h3 .description{ text-transform:none; font-size: 15px; font-family: 'Open Sans', sans-serif;}
.section.grid .header.main_title .btn{ float: right; display: table-cell; vertical-align: middle; margin-bottom: 5px; }
.section.grid .header.main_title .btn + .btn{ margin-right: 0px; }
.section.grid.with_sidebar{ width: calc(100% - 280px); }
.section.grid .item{ padding: 10px; }
.section.grid.cols2 .item{ width: 50%; float: left; }
.section.grid.cols3 .item{ width: 33.3333%; float: left; }
.section.grid.cols4 .item{ width: 25%; float: left; }

/* Swiper Slideshow */
.swiper-slide{ display: block; cursor: move; cursor: -webkit-grab; cursor: -moz-grab; }
.swiper-slide.with_bg{ text-indent: -9000px; }
.swiper-slide.with_bg:before{ display: none; }
.home_slideshow .swiper-slide.with_bg:before{ display: block; }
.swiper-slide.grab{ cursor: -webkit-grabbing; cursor: -moz-grabbing; }

.swiper-slide.slide-hgt100{ height: calc(100vh - 100px); }

/* Projects */
.project.preview.featured{ width: 66.6666% !important; }
.project.preview a{ color: #fff; }
.project.preview .wrap{ display: block; width: 100%; height: 400px; background-color: #000; position: relative; }
.projects.with_sidebar .project.preview .wrap{ height: 320px; }
.project.preview.featured .wrap{ height: 660px !important; }
.project.preview .header{width: 100%;display: block;position: absolute;bottom: 0;left: 0;right: 0;background: rgb(0,0,0);background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);}
.project.preview .header span.sub_title{ display: block; font-size: 18px; text-transform: uppercase; margin: 0 0 5px; }
.project.preview .header .details{width: 100%;float: left;padding-top: 25px;position: relative;display: flex;align-items: center;justify-content: space-between;column-gap: 15px;}
.project.preview.featured .header .details{ padding-top: 30px; }
.project.preview .header .details::before{ content: ''; width: 90px; height: 1px; display: block; position: absolute; top: 10px; left: -30px; background: #ddd; }
.project.preview.featured .header .details::before{ width: 110px; top: 10px; left: -50px; }
.project.preview .header .details .meta{ display: inline-block; vertical-align: middle; padding-right: 30px; }
.project.preview .header .details .meta span{ display: block; font-size: 15px; margin: 0 0 2px; }
.project.single .hero .header .details .details_btn,
.project.preview .header .details_btn{min-width: 122px;height: 34px;display: inline-block;font-size: 10px;font-weight: bold;line-height: 31px;color: #fff;text-align: center;text-transform: uppercase;border: 1px solid #ddd;border-radius: 6px;-moz-border-radius: 6px;-webkit-border-radius: 6px;vertical-align: middle;padding: 0px 10px;margin: 6px 0;flex: 0 0 122px;}
.project.single .hero .header:hover .details_btn,
.project.preview a:hover .header .details_btn{ color: #555; background-color: #fff; border: 1px solid #fff; }

/* Projects - Single */
.project.single .hero .header{ 
width: 100%;
max-width: 980px; 
display: block;
color: #fff;
position:absolute;
top: 0; 
left: 0; 
bottom: 0;
background: rgb(0,0,0);
background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
z-index: 99;
}
.project.single .hero .header .wrap{ 
width: 100%;
display: block;
position:absolute;
top: 50%; 
left: 0; 
text-align: left;
-webkit-transform: translate(0,-50%);
-ms-transform: translate(0,-50%); 
transform: translate(0,-50%);
}
.project.single .hero .header .details{width: 100%;float: left;padding-top: 30px;position: relative;display: flex;column-gap: 30px;align-items: center;flex-wrap: wrap;}
.project.single .hero .header .details::before{ content: ''; width: 120px; height: 1px; display: block; position: absolute; top: 10px; left: -60px; background: #ddd; }
.project.single .hero .header .details .meta{ display: block; }
.project.single .hero .header .details .meta span{ display: block; font-size: 17px; margin: 0 0 4px; }
.project.single .hero .header .details .meta span strong{ text-transform: uppercase; }
.project.single .hero .header .nav{ width: 100%; float: left; padding-top: 50px; position: relative; }
.project.single .hero .header .nav::before{ content: ''; width: 120px; height: 1px; display: block; position: absolute; top: 20px; left: -60px; background: #ddd; }
.project.single .hero .header .nav .nav_btn{ 
width: 50px; 
height: 50px; 
float: left; 
background-repeat: no-repeat; 
background-position: center;
-webkit-background-size: 50px; 
-moz-background-size: 50px;  
-o-background-size: 50px; 
background-size: 50px; 
border: 1px solid #ddd;
text-indent: -9000px;
margin-right: 10px;
cursor: pointer; 
}
.project.single .hero .header .nav .nav_btn.prev{ background-image: url(images/btn_arrow_left.svg); }
.project.single .hero .header .nav .nav_btn.next{ background-image: url(images/btn_arrow_right.svg); }
.project.single .hero .header .nav .nav_btn.continue{ background-image: url(images/btn_arrow_down.svg); }
.project.single .hero .header .nav .nav_btn:hover{ background-color: #166936; border: 1px solid #166936; }

.project.single .hero .slideshow{ position: absolute; top: 0; bottom: 0; right: 0; left: 0; z-index: 9; }
.project.single .hero .slideshow .slide span{ display: none; }

.project_info .img2{ width: 35% !important; }

.project_info .flex_column{ width: 25%; height: calc(100vh - 100px); float: left; position: sticky; display: flex; flex-direction: column; top: 100px; left: 0; }

.project_info .stat{ width: 100%; float: left; } 
.project_info .stat .wrap{ display: block; background: #166936; }
.project_info .stat .wrap span.stat{ display: block; font-size: 100px; line-height: 98px; color: #fff; text-transform: uppercase; padding: 5px 0; }
.project_info .stat .wrap span.title{ display: block; font-size: 26px; color: #fff; text-transform: uppercase; padding-top: 25px; position: relative; clear: both; }
.project_info .stat .wrap span.title::before{ content: ''; width: 100px; height: 1px; display: block; position: absolute; top: 0; left: -60px; background: #ddd; }

.project_info .img3{ width: 100% !important; float: left; flex-grow: 1; }
.project_info .img3 img{ display: none; }

.project_info .main{ width: 40% !important; }
.project_info .main .wrap.with_testimonial{ width: 100%; float: left; display: block; }
.project_info .main .content.with_list{ margin: 0 0 20px; }
.project_info .main .content-block h2:first-child{ color: #166936; }
.project_info .list{ width: 100%; float: left; }
.project_info .list h3{ display: block; font-size: 26px; line-height: 29px; color: #166936; text-transform: uppercase; padding: 0; margin: 0 0 10px; position: relative; }
.project_info .list ul{ width: 100%; float: left; list-style: none; }
.project_info .list ul li{ width: 100%; float: left; padding: 8px 12px; }
.project_info .list ul li.odd{ background-color: #f6f6f6; }

.project_info .main .testimonial{ width: 100%; float: left !important; clear: both; background: #866d4b; }
.project_info .main .testimonial .wrap{ 
display: block !important; 
color: #fff;
background-image: url(images/quotes.svg);
background-repeat: no-repeat; 
background-position: top 20px right 20px;
-webkit-background-size: 30px auto; 
-moz-background-size: 30px auto;  
-o-background-size: 30px auto; 
background-size: 30px auto; 
}
.project_info .main .testimonial .wrap .inner{ display: block; font-size: 21px; line-height: 31px; padding: 0 0 5px; }
.project_info .main .testimonial.video .wrap .inner{ padding: 10px 0 0; }
.project_info .main .testimonial .wrap .inner p{ line-height: 31px; }
.project_info .main .testimonial .wrap span.name{ display: block; font-size: 22px; line-height: 28px; text-transform: uppercase; padding-top: 25px; position: relative; }
.project_info .main .testimonial .wrap span.name::before{ content: ''; width: 110px; height: 1px; display: block; position: absolute; top: 0; left: -80px; background: #9e8a6f; }

/* Project header */
#header .project.preview.featured .wrap-box{ height: 720px !important; }
#header .project.preview .wrap-box{ height: 350px !important; }
#header .project.preview .header .details .meta span{ line-height: 18px; }
#header .project.preview .header .details,
#header .project.preview .header .details_btn{ font-family: 'Open Sans', sans-serif;  }
#header .project.preview .header .details{ text-transform:none; }
#header #nav ul.menu li .project.preview .wrap-box{
color:#fff;
background-color: #000;
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

/* Leadership */
.leadership.preview a{ color: #fff; background-position: top; }
.leadership.preview .wrap{ display: block; width: 100%; height: 420px; background-color: #000; position: relative; }
.leadership.preview .header{ 
width: 100%; 
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}
.leadership.preview .header .details{ width: 100%; float: left; padding-top: 30px; position: relative; }
.leadership.preview .header .details::before{ content: ''; width: 90px; height: 1px; display: block; position: absolute; top: 10px; left: -30px; background: #ddd; }
.leadership.preview .header .details span{ display: block; font-size: 16px; }

.leadership.single .footer{ padding-top: 30px !important; }
.leadership.single .footer .btn{ margin: 5px 10px 5px 0; }

/* News - Preview */
.post.preview a{ width: 100%; float: left; display: block; background: #fff; position: relative; overflow: hidden; }
.post.preview .header span.sub_title{ display: block; font-size: 18px; color: #166936; text-transform: uppercase; margin: 0 0 5px; }
.post.preview .image{ height: 240px; border-bottom: 1px solid #ddd; }
.post.preview .image img{ display: none; }
.post.preview .wrap{ width: 100%; float: left; position: relative; padding-bottom: 60px; }
.post.preview .wrap .excerpt{ width: 100%; float: left; font-size: 13px; position: relative; }
.post.preview .wrap .excerpt p{ line-height: 21px; }

.post.preview .footer{ width: auto; float: none; position: absolute; bottom: 12px; right: 12px; padding: 0; }
.post.preview .footer .details_btn{
width: 100px;
height: 34px;
display: inline-block;
font-size: 10px;
line-height: 31px;
color: #999;
text-align: center;
text-transform: uppercase;
border: 1px solid #ddd;
border-radius: 6px; 
-moz-border-radius: 6px; 
-webkit-border-radius: 6px;
vertical-align: middle;
}
.post.preview a:hover .footer .details_btn{ color: #fff; background-color: #166936; border: 1px solid #166936; }

/* News - Single */
.section.post.single.with_sidebar{ width: calc(100% - 280px); }
.section.post.single .section.entry .header{ padding: 0 0 30px; margin: 0 0 30px; }
.section.post.single .section.entry .header::after{ content: ''; width: 80px; height: 3px; display: block; position: absolute; bottom: 0; left: 0; background: #ddd; }
.section.post.single .section.entry .header span.meta{ display: block; font-size: 26px; color: #166936; line-height: 30px; text-transform: uppercase; padding-top: 10px; }
.section.post.single .section.entry .header span.meta a{ color: #166936; }
.section.post.single .section.entry .footer{ padding-top: 20px; }

/* Logos */
.section.logos .logo .main{display: flex;background: #fff;height: 100%;align-items: center;}
.section.logos{ position: relative; }
.section.logos > .wrapper{ position:relative; z-index: 2; }
.section.logos:after{
	content:"";
	display:block;
	width:100%;
	height:100%;
	z-index:3;
	position:absolute;
	top:0;
	left:0;
}
.section.logos .logo .main .img{ display: table-cell; vertical-align: middle; }

.section.logos .slick-initialized .slick-slide{
    display: flex;
    height: auto;
    float: none;
}

.section.logos .slick-initialized .slick-slide .logo{ display: flex; height: 100%; }
.section.logos .slick-track{ display: flex; }

/* Locations */
.location.item .map{ width: 100%; float: left; position: relative; }
.location.item .map iframe{ width: 100%; height: 220px; display: block; }
.location.item .map .wpgmp_map{ width: 100% !important; height: 220px !important; display: block !important; }
.location.item .main{ width: 100%; float: left; display: block; background: #fff; position: relative; overflow: hidden; }
.location.item .wrap{ width: 100%; float: left; position: relative; }
.location.item .wrap ul{ width: 100%; float: left; list-style: none; }
.location.item .wrap ul li{ width: 100%; float: left; font-size: 15px; font-weight: 400; line-height: 22px; }
.location.item .wrap ul li.address, .location.item .wrap li.address2{ margin: 0 0 15px; }
.location.item .wrap ul li.address.w2{ margin: 0; }
.location.item .wrap ul li a{ color: #166936; }
.location.item .wrap ul li a:hover{ text-decoration: underline; }

/* Sidebar */
#sidebar{width: 280px; height: calc(100vh - 100px); float: right; position: sticky; top: 100px; right: 0; bottom: 0; border-left: 1px solid #ddd; background: #fff; z-index: 9; }
#sidebar .header.top_lvl{ padding-bottom: 5px; border-bottom: 3px solid #e4e4e4; }
#sidebar .header.top_lvl span{ font-size: 18px; }
#sidebar .filter{ width: 100%; float: left; position: relative; }
#sidebar .filter .header.acc_btn{ padding: 12px 1px; border-bottom: 1px solid #e4e4e4; cursor: pointer; position: relative; }
#sidebar .filter .header.acc_btn::after{ 
content: '+'; 
width: 26px; 
height: 20px; 
display: block;
font-size: 20px;
line-height: 20px; 
text-align: center;
position: absolute; 
top: 50%; 
right: 0; 
margin-top: -10px; 
vertical-align: middle; 
}
#sidebar .filter .header.active.acc_btn::after{ content: '-'; }
#sidebar .filter .header.acc_btn h4{ font-size: 12px; line-height: 15px; font-weight: 800; padding-right: 36px; }
#sidebar .filter .header.acc_btn:hover{ color: #166936; }
#sidebar .filter .filters{ width: 100%; float: left; display: none; border-bottom: 1px solid #e4e4e4; position: relative; }
#sidebar .filter .filters ul{ width: 100%; float: left; padding: 15px 0 10px 0; list-style: none; }
#sidebar .filter .filters ul li{ width: auto; float: left; padding: 0 5px 5px 0; }
#sidebar .filter .filters ul li a{ 
display: block; 
font-size: 10px; 
color: #888;
text-transform: uppercase; 
padding: 8px 13px;
border: 1px solid #ececec; 
border-radius: 6px; 
-moz-border-radius: 6px; 
-webkit-border-radius: 6px;
}
#sidebar .filter .filters ul li a.active/*, #sidebar .filter .filters ul li a:hover*/{ color: #166936; border: 1px solid #166936; }
#sidebar .filter .footer .reset.btn{ width: 100%; height: 34px; text-align: left; font-size: 13px; line-height: 36px; padding: 0 16px; }

#sidebar .social{ width: 100%; float: left; position: relative; }
#sidebar .social ul{ width: 100%; float: left; list-style: none; }
#sidebar .social ul li{ width: 100%; float: left; border-bottom: 1px solid #e4e4e4; }
#sidebar .social ul li a{ 
display: block;
font-size: 12px; 
line-height: 15px; 
font-weight: 800;
text-transform: uppercase;
background-position: right; 
background-repeat: no-repeat; 
-webkit-background-size: 20px; 
-moz-background-size: 20px;  
-o-background-size: 20px; 
background-size: 20px; 
padding: 12px 1px; 
cursor: pointer; 
position: relative; 
}
#sidebar .social ul li.facebook a{ background-image: url(images/facebook.svg); }
#sidebar .social ul li.twitter a{ background-image: url(images/twitter.svg); }
#sidebar .social ul li.instagram a{ background-image: url(images/instagram.svg); }
#sidebar .social ul li.linkedin a{ background-image: url(images/linkedin.svg); }
#sidebar .social ul li a:hover{ color: #166936; }

#sidebar .search{ width: 100%; float: left; padding-top: 12px; border-top: 2px solid #e4e4e4; position: relative; }
#sidebar .search form{ display: block; position: relative; }
#sidebar .search .field{ display: block; position: relative; }
#sidebar .search .field input{ 
width: 100%; 
height: 34px; 
font-family: 'Open Sans', sans-serif;
font-size: 11px;
font-weight: 300;
color: #333;
padding: 0 15px; 
border: 1px solid #ddd;;
outline: none;
-webkit-appearance:none;
-moz-appearance:none;
border-radius: 6px; 
-moz-border-radius: 6px; 
-webkit-border-radius: 6px;
appearance:none;
}
#sidebar .search .field input::-webkit-input-placeholder{ color: #999; }
#sidebar .search .field input:-moz-placeholder{ color: #999; }
#sidebar .search .field input::-moz-placeholder{ color: #999; }
#sidebar .search .field input:-ms-input-placeholder{ color: #999; }
#sidebar .search .submit{
width: 40px; 
height: 34px;
display: block;
position: absolute;
top: 0;
right: 0;
background: url(images/search.svg) no-repeat center; 
-webkit-background-size: 14px; 
-moz-background-size: 14px;  
-o-background-size: 14px; 
background-size: 14px; 
border: 0;
outline: none;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
border-radius: 0; 
-moz-border-radius: 0; 
-webkit-border-radius: 0;
text-indent: -9000px; 
cursor: pointer;
}

/* Map */
.section.map iframe{ width: 100%; max-width: 100%; height: 740px; display: block; }
.section.map .infoBox{ width: 180px !important; }
.section.map .infoBoxTail:after{ display: none !important; }

/* Disclaimer */
.section.disclaimer .wrapper{ max-width: 1200px; }
.section.disclaimer{ font-size: 13px; line-height: 20px; text-align: center; }
.section.disclaimer p{ line-height: 20px; }
.section.disclaimer p:last-child{ margin: 0; }

/* Page Navigation */
.section.gold.page_navigation .wrapper{ max-width: 780px; }
.section.gold .page_nav{ color: #fff; }
.section.gold .page_nav ul{ width: 100%; float: left; list-style: none; }
.section.gold .page_nav ul li{ width: 100%; float: left; border-bottom: 1px solid #b1a18c; }
.section.gold .page_nav ul li:first-child{ border-top: 3px solid #b1a18c; }
.section.gold .page_nav ul li a{ display: block; font-size: 22px; line-height: 26px; color: #fff; text-transform: uppercase; padding: 20px 0 15px; }
.section.gold .page_nav ul li a:hover{ color: #b1a18c; }

/* Navigation */
.pagination{ padding: 10px; }
.wp-pagenavi{ width: 100%; padding-top: 15px; border-top: 1px solid #ddd; clear: both; text-align: right; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.wp-pagenavi a, .wp-pagenavi span{ padding: 3px !important; margin: 1px; border: 0 !important; }
.wp-pagenavi span.pages{ float: left; font-size: 14px; font-style: italic; padding-left: 0 !important; margin-left: 0; padding-right: 10px !important; margin-right: 5px; }
.wp-pagenavi a{ font-family: "TradeGothicCondensed#18"; font-size: 22px; color: #555; }
.wp-pagenavi a:hover{ color: #166936; }
.wp-pagenavi span.current{ font-family: "TradeGothicBoldCondensed#20"; font-size: 22px; color: #166936; }

/* Footer */
#footer{ width: 100%; float: left; border-top: 1px solid #ddd; background: #fff; position: relative; }
#footer .wrapper{ display: block; padding: 0; margin: 0 auto; position: relative; overflow: hidden; }
#footer a{ color: #555; }
#footer a:hover{ color: #166936; text-decoration: none; }

#footer .section{ width: 100%; float: left; padding: 40px 0; border-bottom: 1px solid #ddd; }
#footer .section:first-child{ padding-top: 0; padding-bottom: 30px; }
#footer .section:last-child{ padding-top: 20px; padding-bottom: 0; border-bottom: 0; }

#footer .sub_nav ul{ display: block; list-style: none; }
#footer .sub_nav ul li{ display: inline-block; padding-right: 40px; }
#footer .sub_nav ul li a{ display: block; font-size: 14px; font-weight: bold; text-transform: uppercase; position: relative; }

#footer .nav{ width: 100%; float: left; }
#footer .nav ul{ width: 100%; float: left; position: relative; list-style: none; }
#footer .nav ul li{ width: 20%; float: left; padding: 0 40px 0 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; position: relative; }
#footer .nav ul li a{ display: block; font-family: "TradeGothicBoldCondensed#20";  font-size: 26px; line-height: 29px; text-transform: uppercase; padding: 0; margin: 0 0 20px; cursor: default; position: relative; }
#footer .nav ul li a::after{ content: ''; width: 24px; height: 3px; font-family: inherit; display: block; position: absolute; bottom: -10px; left: 0; background: #ddd; }
#footer .nav ul li a span{ display: block; }
#footer .nav ul li a:hover{ text-decoration: none; }
#footer .nav ul li ul.sub-menu{ width: 100%; float: left; clear: both; padding: 0; list-style: none; position: relative; }
#footer .nav ul li ul.sub-menu li{ width: 100%; padding: 0; margin: 0; }
#footer .nav ul li ul.sub-menu li a{ display: block; font-family: 'Open Sans', sans-serif; font-size: 17px; font-weight: normal; line-height: 22px; text-transform: none; padding: 0 0 10px; margin: 0; border: 0; cursor: pointer; }
#footer .nav ul li ul.sub-menu li a::after{ display: none; }

#footer .section.company{ display: table; }

#footer .contact{ width: 50%; display: table-cell; vertical-align: middle; position: relative; }
#footer .contact h3.logo{ width: 152px; height: 50px; display: block; position: absolute; top: 50%; left: 0; margin-top: -22px; text-indent: -9000px; vertical-align: middle; }
#footer .contact h3.logo a{ display: block; width: 152px; height: 50px; background: url(images/logo.svg) no-repeat center; }
#footer .contact ul{
width: 520px;
display: block; 
list-style: none; 
margin-left: 200px; 
vertical-align: middle;
-webkit-columns: 2;
-moz-columns: 2;
columns: 2;
-webkit-column-gap: 20px;
-moz-column-gap: 20px;
column-gap: 20px;
}
#footer .contact ul li{ display: block; font-size: 15px; font-weight: 400; line-height: 22px; vertical-align: top; }
#footer .contact ul li.title{ font-weight: bold; text-transform: uppercase; }

#footer .cta_btns{ width: 50%; display: table-cell; vertical-align: middle; text-align: right; }
#footer .cta_btns .btn{ width: 260px; float: none; display: inline-block; margin-top: 5px; margin-bottom: 5px; }
#footer .cta_btns .btn:last-child{ margin-left: 10px; }

#footer ul.social{ width: auto; float: right; list-style: none; }
#footer ul.social li{ width: 30px; height: 30px; display: inline-block; vertical-align: top; text-indent: -9000px; }
#footer ul.social li a{ 
width: 30px; 
height: 30px; 
display: block; 
background-position: center; 
background-repeat: no-repeat; 
position: relative; 
overflow: hidden; 
}
#footer ul.social li.facebook a{ background-image: url(images/facebook.svg); }
#footer ul.social li.twitter a{ background-image: url(images/twitter.svg); }
#footer ul.social li.instagram a{ background-image: url(images/instagram.svg); }
#footer ul.social li.linkedin a{ background-image: url(images/linkedin.svg); }
#footer ul.social li.pinterest a{ background-image: url(images/pinterest.svg); }
#footer ul.social li.youtube a{ background-image: url(images/youtube.svg); }

#footer .meta{ width: auto; float: left; font-family: 'Open Sans', sans-serif; font-size: 11px; line-height: 16px; padding-top: 8px; }
#footer .meta span{ display: inline-block; }
#footer .meta ul.licenses{ display: inline-block; list-style: none; border-left: 1px solid #ccc; margin-left: 6px; padding-left: 8px; }
#footer .meta ul.licenses li{ display: inline-block; padding-right: 4px; }
#footer .meta ul.licenses li.title{ font-weight: 600; text-transform: uppercase; }
#footer .meta ul.licenses li::after{ content: '/'; display: inline-block; padding: 0 0 0 6px; }
#footer .meta ul.licenses li:first-child::after, #footer .meta ul.licenses li:last-child::after{ display: none; }

/* Forms */
.wpcf7{ display: block; clear: both; padding: 20px 0 0 !important; }
.wpcf7-form{ width: 100%; max-width: 720px; display: block; margin: 0 auto; border-top: 1px solid #ccc; overflow: hidden; position: relative; }
.wpcf7-form fieldset{ width: 100%; float: left; display: block; border: 0; padding: 0 0 20px; margin: 0 0 30px; }
.wpcf7-form label{ display: block; font-size: 13px; color: #222; font-weight: normal; font-style: italic; line-height: 16px; padding: 13px 10px 0 10px; margin: 0 0 -5px; }
.wpcf7-form div.form_radios{ width: 100%; float: left; margin: 0 0 20px; position: relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.wpcf7-form div.form_radios .wpcf7-list-item{ display: inline-block; padding: 0 4px 4px 0; }
.wpcf7-form div.form_field{ width: 100%; float: left; margin: 0; border-bottom: 1px solid #ccc; position: relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.wpcf7-form div.form_field span{ display: block; }
.wpcf7-form div.form_field input, 
.wpcf7-form div.form_field select,
.wpcf7-form div.form_field textarea { 
width: 100%; 
display: block; 
font-family: 'Spectral', serif; 
color: #222;
font-size: 15px;
font-weight: 400;
text-transform: uppercase;
padding: 13px 10px;
background: transparent;
border: 0;
-webkit-box-sizing: border-box; 
-moz-box-sizing: border-box; 
box-sizing: border-box;
-webkit-appearance: none;
border-radius: 0; 
-moz-border-radius: 0; 
-webkit-border-radius: 0;	
outline: none;
}
.wpcf7-form div.form_field textarea { height: 160px; padding: 18px 10px; }
.wpcf7-form div.form_field select{ 
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
text-indent: 0.01px;
text-overflow: '';
padding-right: 36px;
background: url(images/arrow_down_gray.svg) no-repeat right 16px top 50%;
-webkit-background-size: 10px 6px; 
-moz-background-size: 10px 6px;  
-o-background-size: 10px 6px; 
background-size: 10px 6px;
}
.wpcf7-form div.form_field select::-ms-expand { display: none; }
.wpcf7-form div.form_field input::-webkit-input-placeholder{ color: #222; }
.wpcf7-form div.form_field input:-moz-placeholder{ color: #222; }
.wpcf7-form div.form_field input::-moz-placeholder{ color: #222; }
.wpcf7-form div.form_field input:-ms-input-placeholder{ color: #222; }
.wpcf7-form div.form_field select::-webkit-input-placeholder{ color: #222; }
.wpcf7-form div.form_field select:-moz-placeholder{ color: #222; }
.wpcf7-form div.form_field select::-moz-placeholder{ color: #222; }
.wpcf7-form div.form_field select:-ms-input-placeholder{ color: #222; }
.wpcf7-form div.form_field textarea::-webkit-input-placeholder{ color: #222; }
.wpcf7-form div.form_field textarea:-moz-placeholder{ color: #222; }
.wpcf7-form div.form_field textarea::-moz-placeholder{ color: #222; }
.wpcf7-form div.form_field textarea:-ms-input-placeholder{ color: #222; }

.wpcf7-form div.submit{ width: 100%; float: left; text-align: center; clear: both; padding: 30px 0; position: relative; }
div.wpcf7 .ajax-loader{ position: absolute; top: 50%; right: 0; margin-top: -8px !important; }
.wpcf7-form div.submit input { 
width: auto;
height: auto;
display: inline-block;
font-family: 'Spectral', serif; 
font-size: 18px;
font-weight: 400;
line-height: 18px;
color: #fff;
text-align: center;
text-decoration: none;
text-transform: uppercase;
padding: 15px 80px;
margin: 0;
border: 1px solid #8a1e04;
background-color: #8a1e04;
position: relative; 
cursor: pointer;
outline: none;
-webkit-appearance: none;
border-radius: 0; 
-moz-border-radius: 0; 
-webkit-border-radius: 0;
}
.wpcf7-form div.submit input:hover{ color: #8a1e04; background-color: transparent; }

div.wpcf7-response-output{ 
clear: both;
color: #222 !important;
font-size: 16px;
font-weight: 600;
line-height: 22px;
border: 1px solid #ccc !important;
background: #f7f7f7;
margin: 0 0 20px !important; 
padding: 25px 20px !important;
color: inherit; 
text-align: center;
border-radius: 0; 
-moz-border-radius: 0; 
-webkit-border-radius: 0;
}
div.wpcf7-validation-errors{ color: #fff !important; border: 1px solid #8a1e04 !important; background: #8a1e04; }

span.wpcf7-not-valid-tip {
width: auto !important;
height: 5px;
position: absolute;
overflow: hidden;
background: transparent !important;
border: 0 !important;
border-left: 1px solid #8a1e04 !important;
border-bottom: 1px solid #8a1e04 !important;
text-indent: -9000px;
top: inherit !important;
left: 0 !important;
right: 0 !important;
bottom: -1px !important;
padding: 0 !important;
}

/* Content Block Universal Code */
/* Begin Images */
.content-block img{ display: block; max-width: 100%; height: auto; padding: 10px 0 20px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.content-block .aligncenter { display: block; margin: 0 auto; }
.content-block .alignleft{ max-width: 50%; display: inline-block; float: left; padding-right: 30px; vertical-align: top; }
.content-block .alignright{ max-width: 50%; display: inline-block; float: right; padding-left: 30px; vertical-align: top; }
.content-block .alignleft img, .content-block .alignright img{ padding-left: 0; padding-right: 0; }
.content-block .wp-caption{ width: auto !important; text-align: center; margin: 0 0 20px; background: #fff; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.content-block .wp-caption.alignleft, .content-block .wp-caption.alignright{ width: 50% !important; padding: 0; }
.content-block .wp-caption.alignleft{ margin-right: 30px; }
.content-block .wp-caption.alignright{ margin-left: 30px; }
.content-block .wp-caption p.wp-caption-text{ display: block; font-size: 15px; line-height: 22px; padding: 10px 12px; margin: 0; background-color: #fff; }
.content-block .wp-caption img{ padding: 10px 10px 0; margin: 0 auto; }
/* END Images */

/* Begin Image Gallery */
.content-block .gallery{ display: block; max-width: 1020px; padding: 10px 0 30px; margin: 0 auto; overflow: hidden; }
.content-block .gallery .gallery_item{ width: 20%; float: left; }
.content-block .gallery .gallery_item a{ display: block; padding: 5px; margin: 5px; background: #fff; }
.content-block .gallery .gallery_item a img{ display: block; width: auto; max-width: 100%; height: auto; padding: 0; margin: 0 auto; }
/* END Image Gallery */

/* Video */
.content-block .fluid-width-video-wrapper{ margin: 60px 0 20px; }
.video.content-block .fluid-width-video-wrapper, #video .fluid-width-video-wrapper{ margin: 0; }
.content-block embed, .content-block iframe, .content-block object{ max-width: 100%; }
.content-block video { max-width: 100%; height: auto; }

.content-block p sm{ display: block; font-size: 11px; font-weight: 400; color: #777; line-height: 18px !important; }
.content-block p.disclaimer{ font-size: 13px; font-style: italic; line-height: 21px; }
.tradecontractors-location .content-block a.wp-block-button__link{ color: #fff; }
.content-block a{ color: #166936; }
.content-block a:hover{ text-decoration: underline; }

.content-block blockquote{ 
font-size: 20px;
font-weight: 400;
font-style: italic;
line-height: 28px;
color: #222;
padding: 5px 20px;
margin: 30px 0;
border-left: 3px solid #166936;
position: relative;
}
.content-block blockquote p{ line-height: 28px; }
.content-block blockquote p:last-child{ margin-bottom: 0; }

.content-block h1, .content-block h2, .content-block h3, .content-block h4, .content-block h5{ font-family: "TradeGothicBoldCondensed#20"; font-size: 100%; font-weight: inherit; text-transform: uppercase; padding: 20px 0 15px; }
.content-block h1:first-child, .content-block h2:first-child, .content-block h3:first-child, .content-block h4:first-child, .content-block h5:first-child{ padding-top: 0; }
.content-block h1{ font-size: 40px; line-height: 48px; }
.content-block h2{ font-size: 26px; line-height: 32px; }
.content-block h3{ font-size: 24px; line-height: 30px; }
.content-block h4{ font-size: 20px; line-height: 28px; }
.content-block h5{ font-size: 18px; line-height: 26px; }

.content-block ul, .content-block ol{ padding: 0 0 20px 40px; }
.content-block ul{ list-style: square; }
.content-block ol{ list-style: decimal; }
.content-block ul li, .content-block ol li{ padding: 0 0 8px; line-height: 26px; }
.content-block ul li p, .content-block ol li p{ margin: 0 0 15px; }

.content-block ul.contact-forms-list .wf{ text-transform:none; }
/* END Content Block Universal Code */

/* Modal Window */
#modal, #mask{
display:none;
width: 100%;
height: 100%;
position:fixed;
top:0px;
left:0px;
z-index: 999998;
}
#mask{ background: #000; }

.modal_window{
display:none;
position: absolute;
top: 0; 
right: 0; 
left: 0; 
bottom: 0;
margin: 0 0 45px;
z-index: 99999999;
}
.modal_window .loader{ background-color: transparent !important; }


.section.hero-video .wrap-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section.hero-video > .footer{
    position: absolute;
    z-index: 1000;
    bottom: 20%;
}
.hero-text-overlays{ width:100%; max-width:100vw; }
.hero-text-overlay{
}
.hero-text-overlay .text-block{
    text-transform: uppercase;
    font-size: 130px;
	display:block;
	margin-top: 20px;
	color:#fff;
}
.slick-track .slick-slide:last-child .hero-text-overlay .text-block{ font-size: 220px; }
.hero-text-overlay.sec .text-block,
.hero-text-overlay.sec .footer{ display:none; opacity:0; }
.slick-slider .hero-text-overlay.sec .text-block,
.slick-slider .hero-text-overlay.sec .footer{ opacity:1; display:block; }
.section.hero-video * {
-webkit-box-sizing: border-box; 
-moz-box-sizing: border-box; 
box-sizing: border-box;
}
.section.hero-video .footer ul.btns{display: flex;column-gap:12px;align-items: center;justify-content: center;flex-wrap: wrap;}
.section.hero-video .footer ul.btns li{ width: auto;}

.section.hero-video .slick-track{ display: flex; align-items:center; }

.section.hero-video .hgt100 .footer{ margin-top: -50px; }

.map-market .wpgmp_map { height:calc(100vh - 100px) !important; }


.tagemebed .splide__slide{ padding: 0 10px !important; }
.tagemebed .te_shShare{ display:none !important; opacity:0 !important; visibility: hidden !important; }
.tagembedModal .tagembedContentWrapper{ background-color:#fff; }

.tagembed-wrap{width:100%;clear: both;position: relative;z-index: 100;margin-top: 0px;float: left;}


.tagemebed .te_themeStart47 .postTag{
	border-radius: 6px !important;
	/*
	-webkit-box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1) !important;
	-moz-box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1) !important;
	box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.1) !important;
	*/
}

.tagemebed  .te_themeStart47 .splide__arrow{
    width: 40px;
    height: 40px;
    border-radius:6px;
    background: white;
    border: 2px solid #166936;
	background-image: url(images/btn_arrow_left_gray.svg);
	-webkit-background-size: 40px;
	-moz-background-size: 40px;
	-o-background-size: 40px;
	background-size: 40px;
	background-position:center;
}
.tagemebed   .splide__arrow.splide__arrow--prev{
	position:absolute;
	top: -40px;
	left:auto;
	right: 63px;
	background-color: transparent;
	border: 1px solid #166936;
}
.tagemebed  .splide__arrow.splide__arrow--next{
	position:absolute;
	top: -60px;
	left:auto;
	right: 13px;
	transform:rotate(-180deg);
	border: 1px solid #166936;
}
.tagemebed  .splide__arrow:hover{ background-color:#166936; }
.tagemebed  .te_themeStart47 .splide__arrow svg{ opacity: 0 !important; }

.tagemebed .themesWrapper{ padding-top: 63px; }
.tagemebed .pad_big:after{ clear:both; content:""; display: table; }
.tagembed-wrap > p:first-of-type,
.tagembed-wrap > p span:empty{ display: none; }

.te_postAuthorWrapper .te_postNetwork,
.tagemebed .te_postAuthorWrapper .te_postNetwork,
.tagemebed .te_themeStart47 .te_postNetwork{ display:none !important; }

.posts-blocks-extra{ margin-top: 50px; }
.te_tagembedModal .te_tagembedContentWrapper{ background-color:#fff; }
.te_themeStart47.te_themesWrapper{ padding-top: 60px; !important; }


.new-filter-btn-wrap{ float:right; display:flex; column-gap: 10px; }
.new-filter-btn-wrap .slick-next-custom-box{ margin: 0; }